Let bl31_check_ns_address() print the address it doesn't like.
Signed-off-by: Andreas Färber <[email protected]>
Change-Id: I29a4fb33c24e9f7464ccd2ea44a4608f5cfe5be6
if ((base < TEGRA_DRAM_BASE) || (base >= TEGRA_DRAM_END) ||
(end > TEGRA_DRAM_END)) {
- ERROR("NS address is out-of-bounds!\n");
+ ERROR("NS address 0x%llx is out-of-bounds!\n", base);
ret = -EFAULT;
}
* to check if the NS DRAM range overlaps the TZDRAM aperture.
*/
if ((base < (uint64_t)TZDRAM_END) && (end > tegra_bl31_phys_base)) {
- ERROR("NS address overlaps TZDRAM!\n");
+ ERROR("NS address 0x%llx overlaps TZDRAM!\n", base);
ret = -ENOTSUP;
}